home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / rsh_users.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  126 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10380);
  10.  script_version ("$Revision: 1.15 $");
  11.  
  12.  
  13.  name["english"] = "rsh on finger output";
  14.  name["francais"] = "rsh on finger output";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "
  18. This plugin attempts to log into the remote host
  19. using rsh and uses the names given by the output
  20. of finger.
  21.  
  22. Risk factor : High";
  23.  
  24.  
  25.  desc["francais"] = "
  26. Ce plugin essaye de se logguer sur la machine distante
  27. en utilisant rsh et les noms donnΘs par la sortie
  28. de la commande finger";
  29.  
  30.  
  31.  script_description(english:desc["english"], francais:desc["francais"]);
  32.  
  33.  summary["english"] = "attempts to log in using rsh";
  34.  summary["francais"] = "essaye de se logguer en utilisant rsh";
  35.  
  36.  script_summary(english:summary["english"], francais:summary["francais"]);
  37.  
  38.  script_category(ACT_ATTACK);
  39.  
  40.  
  41.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  42.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  43.  family["english"] = "Gain a shell remotely";
  44.  family["francais"] = "Obtenir un shell α distance";
  45.  script_family(english:family["english"], francais:family["francais"]);
  46.  script_dependencie("find_service.nes", "finger.nasl", "rsh.nasl");
  47.  script_require_ports("Services/rsh", 514);
  48.  script_require_keys("rsh/active");
  49.  exit(0);
  50. }
  51.  
  52.  
  53. function login(port, name)
  54. {
  55.  soc = open_priv_sock_tcp(dport:port);
  56.  if(soc)
  57.  {
  58.   s1 = raw_string(0);
  59.   s2 = name + raw_string(0) + name + raw_string(0) + "id" + raw_string(0);
  60.   send(socket:soc, data:s1);
  61.   send(socket:soc, data:s2);
  62.   a = recv(socket:soc, length:1024);
  63.   a = recv(socket:soc, length:1024);
  64.   if(egrep(string:a, pattern:"^uid.*$"))
  65.   {
  66.    data = "It was possible to log into this host using the account '" + name +
  67.          "' !" + string("\n") + "Either it is passwordless or the file " +
  68.       "~/.rhosts is not configured properly." + string("\n") + 
  69.       "Here is the output of the command 'id' : " + string("\n") + string("\n") + a + string("\n") +
  70.       "Solution : remove ~/.rhosts or set a password" + string("\n") +
  71.       "Risk factor : High";
  72.    security_hole(port:port, data:data);
  73.   }
  74.   close(soc);
  75.   }
  76. }
  77.  
  78. port = get_kb_item("Services/rsh");
  79. if(!port)port = 514;
  80. if(!get_port_state(port))exit(0);
  81.  
  82. login(port:port, name:"root");
  83.  
  84. #
  85. # these will most likely find backdoor rather
  86. # than real unconfigured systems
  87. #
  88. login(port:port, name:"toor");
  89. login(port:port, name:"bin");
  90. login(port:port, name:"daemon");
  91. login(port:port, name:"operator");
  92. login(port:port, name:"nobody");
  93. login(port:port, name:"adm");
  94. login(port:port, name:"ftp");
  95. login(port:port, name:"postgres");
  96. login(port:port, name:"gdm");
  97.  
  98. finger_port = get_kb_item("Services/finger");
  99. if(!finger_port)finger_port = 79;
  100.  
  101. if(!get_port_state(finger_port))exit(0);
  102. finger = open_sock_tcp(finger_port);
  103. if(!finger)exit(0);
  104. send(socket:finger, data:string("\r\n"));
  105. r = recv_line(socket:finger, length:1024);
  106. if(!r)exit(0);
  107. r = recv_line(socket:finger, length:1024);
  108.  
  109. tested = " root toor bin daemon operator nobody adm ftp postgres gdm ";
  110.  
  111. while(r)
  112. {
  113.   s = strstr(r," ");
  114.   r = r - s;
  115.   pat = ".* " + r + " .*";
  116.   
  117.   if(!egrep(string:tested, pattern:pat))
  118.   {
  119.   tested = tested + " " + r + " ";
  120.   login(name:r, port:port);
  121.   }
  122.  r = recv_line(socket:finger, length:1024);
  123. }
  124.  
  125. close(finger);
  126.